* {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif, Geneva, Tahoma, sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  background-color: white;
  padding-bottom: 100px;
}

nav {
  background-color: #23272a;
  margin-top: -20px;
  margin-bottom: -10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav img {
  width: 60px;
  margin-left: 20px;
  padding: 10px;
}
nav .navLinks {
  width: 500px;
}
nav a {
  color: #d4edf2;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
nav a:hover {
  font-weight: bold;
}
nav p {
  color: #d4edf2;
}
nav ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  list-style-type: none;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #23272a;
  color: #d4edf2;
  padding: 10px 0; /* Adjust padding as needed */
  z-index: 100; /* Ensure the footer is above other content */
  margin-top: 20px;
}

#boldText {
  font-weight: bold;
}

.indented {
  margin-left: 50px;
}

.doubleIndent {
  margin-left: 75px;
}

.code-block {
  background-color: #f4f4f4;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
  width: 550px;
  min-height: 100px;
}
.code-block code {
  font-family: "Courier New", Courier, monospace;
  padding: 20px;
}
.code-block .keyword {
  color: #007bff;
}
.code-block .function-name {
  color: #6f42c1;
}
.code-block .parameter {
  color: #28a745;
}
.code-block .statement {
  color: #dc3545;
}
.code-block .method {
  color: #17a2b8;
}
.code-block .string {
  color: #6f42c1;
}
.code-block .comment {
  color: #6c757d;
}

.imgCaption {
  font-weight: bold;
  text-align: center;
  border: 2px solid #23272a;
  padding: 20px;
  border-radius: 50px;
  background-color: #23272a;
  color: #d4edf2;
}

.mainSection {
  justify-content: space-evenly;
  display: flex;
  max-width: 900px;
  margin: 0 auto;
}
.mainSection img {
  max-width: 20vw;
  min-width: 300px;
  margin: 15px;
  border: 2px solid #23272a;
  border-radius: 25px;
  overflow: hidden;
  object-fit: fill;
}

.loopsSection .text {
  width: 80%;
}
.loopsSection .aboutImgs {
  margin: 10px;
}
.loopsSection .aboutImgs img {
  max-width: 20vw;
  min-width: 300px;
  margin: 15px;
  border: 2px solid #23272a;
  border-radius: 25px;
  overflow: hidden;
  object-fit: fill;
}

.contactForm button {
  background-color: #f88f3c;
  padding-left: 20px;
  padding-right: 20px;
  padding: 15px;
  border-radius: 50px;
}
.contactForm input {
  width: 60%;
  max-width: 400px;
}
.contactForm textarea {
  width: 60%;
  max-width: 450px;
}

#userTable {
  width: 500px;
  border: 2px solid black;
  border-radius: 5px;
}
#userTable table {
  width: 100%;
}
#userTable tr:nth-child(even) {
  background-color: #f2f2f2;
}
#userTable tr:nth-child(odd) {
  background-color: #dddddd;
}

/*# sourceMappingURL=styles.css.map */
